home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / mig / MigHostCache.c < prev    next >
C/C++ Source or Header  |  1990-09-24  |  3KB  |  109 lines

  1. /* 
  2.  * MigHostCache.c --
  3.  *
  4.  *    Internal routine to manage the cache of available hosts.
  5.  *
  6.  * Copyright 1990 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/MigHostCache.c,v 2.1 90/09/24 14:46:46 douglis Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <sprite.h>
  21. #include <hash.h>
  22. #include <stdlib.h>
  23. #include <mig.h>
  24. #include "migInt.h"
  25.  
  26. static Hash_Table table;
  27.  
  28.  
  29. /*
  30.  *----------------------------------------------------------------------
  31.  *
  32.  * MigHostCache --
  33.  *
  34.  *    Add, remove, or verify an entry in the host cache.
  35.  *
  36.  * Results:
  37.  *    TRUE if the host is in the cache at the start of the operation,
  38.  *    FALSE otherwise.  
  39.  *
  40.  * Side effects:
  41.  *    Hash table is updated.
  42.  *
  43.  *----------------------------------------------------------------------
  44.  */
  45.  
  46. int
  47. MigHostCache(hostID, op, callback)
  48.     int hostID;            /* Host to operate on. */
  49.     MigCacheOp op;        /* Operation to perform. */
  50.     int callback;        /* Whether to invoke callback function */
  51. {
  52.     static int init = 0;
  53.     Hash_Entry *entryPtr;    /* Entry in hash table. */
  54.     int found;
  55.  
  56.     if (!init) {
  57.     if (op == MIG_CACHE_REMOVE_ALL) {
  58.         return(0);
  59.     }
  60.     Hash_InitTable(&table, 0, HASH_ONE_WORD_KEYS);
  61.     init = 1;
  62.     }
  63.  
  64.     switch (op) {
  65.     case MIG_CACHE_ADD: {
  66.         /*
  67.          * Create the entry if it doesn't exist.  Sets third arg
  68.          * to TRUE if it creates it, meaning it wasn't found, so
  69.          * we have to negate it.
  70.          */
  71.         entryPtr = Hash_CreateEntry(&table, (Address) hostID, &found);
  72.         found = !found;
  73.         Hash_SetValue(entryPtr, (ClientData) hostID);
  74.         break;
  75.     }
  76.     case MIG_CACHE_VERIFY: 
  77.     case MIG_CACHE_REMOVE: {
  78.         entryPtr = Hash_FindEntry(&table, (Address) hostID);
  79.         found = (entryPtr != (Hash_Entry *) NULL);
  80.         if (op == MIG_CACHE_REMOVE && found) {
  81.         Hash_DeleteEntry(&table, entryPtr);
  82.         }
  83.         if (callback && (migCallBackPtr != NULL)) {
  84.         (*migCallBackPtr)(hostID);
  85.         }
  86.         
  87.         break;
  88.     }
  89.     case MIG_CACHE_REMOVE_ALL: {
  90.         if (callback && (migCallBackPtr != NULL)) {
  91.         Hash_Search search;
  92.         for (entryPtr = Hash_EnumFirst(&table, &search);
  93.              entryPtr != NULL; entryPtr = Hash_EnumNext(&search)) {
  94.             hostID = (int) Hash_GetValue(entryPtr);
  95.             (*migCallBackPtr)(hostID);
  96.         }
  97.         }
  98.         Hash_DeleteTable(&table);
  99.         init = 0;
  100.         return(0);
  101.     }
  102.     default: {
  103.         return(0);
  104.     }
  105.     }
  106.     return(found);
  107. }
  108.  
  109.